home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programmer's Power Pack / Delphi Volume 1.iso / s_to_z / uback / backtest.dpr next >
Text File  |  1996-09-15  |  176b  |  13 lines

  1. program Backtest;
  2.  
  3. uses
  4.   Forms,
  5.   Btest in 'BTEST.PAS' {TestBackup};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.CreateForm(TTestBackup, TestBackup);
  11.   Application.Run;
  12. end.
  13.